how to get prime numbers in a list in python using list comprehension

33

how to get prime numbers in a list in python using list comprehension -

>>> [x for x in range(2, 20)
     if all(x % y != 0 for y in range(2, x))]
[2, 3, 5, 7, 11, 13, 17, 19]

Comments

Submit
0 Comments